home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 2005 June (DVD)
/
DPPRO0605DVD.iso
/
Install
/
program files
/
Borland
/
BDS
/
3.0
/
Demos
/
Delphi.Net
/
VCL
/
Shape
/
ShapeChanger.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2004-10-22
|
341 b
|
16 lines
program ShapeChanger;
{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
uses
Borland.Vcl.Forms,
Shapes in 'Shapes.pas' {Form1};
[STAThread]
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Form1.Position := poDefault;
Application.Run;
end.